home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / DSOs / forum93 / case4 / loop.c next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  126 b   |  12 lines

  1. extern float v3f(float *);
  2.  
  3. float *pts[100];
  4.  
  5. void loop() {
  6.     int i;
  7.     for (i=1; i<100; i++) {
  8.     v3f(pts[i]);
  9.     }
  10. }
  11.     
  12.